Using the official Python libraries, I want to obtain a list of 10 most recent Incidents using this:
Retrieves a list of 10 incidents in this account
print(â=================â)
print(â10 Incidents Listâ)
print(â=================â)
for ilist in session.rget(âincidentsâ, params={âlimitâ:10}):
print("%s | %s | %s"%(ilist[âdescriptionâ], ilist[âincident_numberâ], ilist[âcreated_atâ]))
but as a result, dates in created_at field are showing NOT the most recent ones.
What should I do?